How do you safely work around broken code? [closed]

Posted by burnt1ce on Programmers See other posts from Programmers or by burnt1ce
Published on 2012-11-08T15:50:47Z Indexed on 2012/11/08 23:16 UTC
Read the original article Hit count: 415

Filed under:
|

Once in a while, a co-worker will check-in bad code which blocks my application from initializing properly.

To get around this problem quickly, I comment out the offending code. I then forget to uncomment the offending code at the time of my check-in, so I want to prevent this from happening again.

Do you have any suggestions on how to:

  1. Disable bad code that stop you from working
  2. Prevent yourself from checking in unwanted changes?

I'm currently using Visual Studio as my IDE and TFS as my source code repo.

© Programmers or respective owner

Related posts about visual-studio

Related posts about tfs